home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day06 / viewmain.dfm / viewmain.txt
Encoding:
Text File  |  1998-02-08  |  3.8 KB  |  170 lines

  1. object MainForm: TMainForm
  2.   Left = 214
  3.   Top = 132
  4.   Width = 544
  5.   Height = 375
  6.   Caption = 'Picture Viewer'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   FormStyle = fsMDIForm
  13.   Menu = MainMenu
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object MainMenu: TMainMenu
  17.     Left = 8
  18.     Top = 24
  19.     object File1: TMenuItem
  20.       Caption = '&File'
  21.       object New1: TMenuItem
  22.         Caption = '&New'
  23.       end
  24.       object Open1: TMenuItem
  25.         Caption = '&Open...'
  26.         OnClick = Open1Click
  27.       end
  28.       object Save1: TMenuItem
  29.         Caption = '&Save'
  30.       end
  31.       object SaveAs1: TMenuItem
  32.         Caption = 'Save &As...'
  33.         OnClick = SaveAs1Click
  34.       end
  35.       object N2: TMenuItem
  36.         Caption = '-'
  37.       end
  38.       object Print1: TMenuItem
  39.         Caption = '&Print...'
  40.       end
  41.       object PrintSetup1: TMenuItem
  42.         Caption = 'P&rint Setup...'
  43.       end
  44.       object N1: TMenuItem
  45.         Caption = '-'
  46.       end
  47.       object Exit1: TMenuItem
  48.         Caption = 'E&xit'
  49.       end
  50.     end
  51.     object Edit1: TMenuItem
  52.       Caption = '&Edit'
  53.       object Undo1: TMenuItem
  54.         Caption = '&Undo'
  55.         ShortCut = 16474
  56.       end
  57.       object Repeatcommand1: TMenuItem
  58.         Caption = '&Repeat <command>'
  59.       end
  60.       object N5: TMenuItem
  61.         Caption = '-'
  62.       end
  63.       object Cut1: TMenuItem
  64.         Caption = 'Cu&t'
  65.         ShortCut = 16472
  66.       end
  67.       object Copy1: TMenuItem
  68.         Caption = '&Copy'
  69.         ShortCut = 16451
  70.       end
  71.       object Paste1: TMenuItem
  72.         Caption = '&Paste'
  73.         ShortCut = 16470
  74.       end
  75.       object PasteSpecial1: TMenuItem
  76.         Caption = 'Paste &Special...'
  77.       end
  78.       object N4: TMenuItem
  79.         Caption = '-'
  80.       end
  81.       object Find1: TMenuItem
  82.         Caption = '&Find...'
  83.       end
  84.       object Replace1: TMenuItem
  85.         Caption = 'R&eplace...'
  86.       end
  87.       object GoTo1: TMenuItem
  88.         Caption = '&Go To...'
  89.       end
  90.       object N3: TMenuItem
  91.         Caption = '-'
  92.       end
  93.       object Links1: TMenuItem
  94.         Caption = 'Lin&ks...'
  95.       end
  96.       object Object1: TMenuItem
  97.         Caption = '&Object'
  98.       end
  99.     end
  100.     object Window1: TMenuItem
  101.       Caption = '&Window'
  102.       object NewWindow1: TMenuItem
  103.         Caption = '&New Window'
  104.       end
  105.       object Tile1: TMenuItem
  106.         Caption = '&Tile'
  107.         OnClick = Tile1Click
  108.       end
  109.       object Cascade1: TMenuItem
  110.         Caption = '&Cascade'
  111.         OnClick = Cascade1Click
  112.       end
  113.       object ArrangeAll1: TMenuItem
  114.         Caption = '&Arrange All'
  115.         OnClick = ArrangeAll1Click
  116.       end
  117.       object N6: TMenuItem
  118.         Caption = '-'
  119.       end
  120.       object Hide1: TMenuItem
  121.         Caption = '&Hide'
  122.       end
  123.       object Show1: TMenuItem
  124.         Caption = '&Show...'
  125.       end
  126.     end
  127.     object Help1: TMenuItem
  128.       Caption = '&Help'
  129.       object Contents1: TMenuItem
  130.         Caption = '&Contents'
  131.       end
  132.       object Index1: TMenuItem
  133.         Caption = '&Index'
  134.       end
  135.       object Commands1: TMenuItem
  136.         Caption = 'Co&mmands'
  137.       end
  138.       object Procedures1: TMenuItem
  139.         Caption = '&Procedures'
  140.       end
  141.       object Keyboard1: TMenuItem
  142.         Caption = '&Keyboard'
  143.       end
  144.       object SearchforHelpOn1: TMenuItem
  145.         Caption = '&Search for Help On'
  146.       end
  147.       object Tutorial1: TMenuItem
  148.         Caption = '&Tutorial'
  149.       end
  150.       object HowtoUseHelp1: TMenuItem
  151.         Caption = '&How to Use Help'
  152.       end
  153.       object About1: TMenuItem
  154.         Caption = '&About...'
  155.         OnClick = About1Click
  156.       end
  157.     end
  158.   end
  159.   object OpenDialog: TOpenDialog
  160.     Title = 'Open a Picture for Viewing'
  161.     Left = 48
  162.     Top = 24
  163.   end
  164.   object SaveDialog: TSaveDialog
  165.     Title = 'Save a Picture'
  166.     Left = 88
  167.     Top = 24
  168.   end
  169. end
  170.